home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2000 #5 / Amiga Plus CD - 2000 - No. 5.iso / Tools / Dev / lame_src / tables.h < prev    next >
C/C++ Source or Header  |  2000-01-01  |  2KB  |  51 lines

  1. /*
  2. ** Copyright (C) 1999 Albert L. Faber
  3. **  
  4.  * This library is free software; you can redistribute it and/or
  5.  * modify it under the terms of the GNU Library General Public
  6.  * License as published by the Free Software Foundation; either
  7.  * version 2 of the License, or (at your option) any later version.
  8.  *
  9.  * This library is distributed in the hope that it will be useful,
  10.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.     See the GNU
  12.  * Library General Public License for more details.
  13.  *
  14.  * You should have received a copy of the GNU Library General Public
  15.  * License along with this library; if not, write to the
  16.  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
  17.  * Boston, MA 02111-1307, USA.
  18.  */
  19.  
  20. #ifndef TABLES_H_INCLUDED
  21. #define TABLES_H_INCLUDED
  22. #include "encoder.h"
  23. #include "machine.h"
  24. extern FLOAT8 psy_data[];
  25.  
  26. #define HUFFBITS unsigned long int
  27. #define HTN    34
  28.  
  29. struct huffcodetab {
  30.   unsigned int xlen;     /*max. x-index+                      */ 
  31.   unsigned int linmax;    /*max number to be stored in linbits    */
  32.   HUFFBITS *table;    /*pointer to array[xlen][ylen]        */
  33.   unsigned char *hlen;    /*pointer to array[xlen][ylen]        */
  34. };
  35.  
  36. extern struct huffcodetab ht[HTN];/* global memory block        */
  37.                 /* array of all huffcodtable headers    */
  38.                 /* 0..31 Huffman code table 0..31    */
  39.                 /* 32,33 count1-tables            */
  40.  
  41.  
  42. extern struct huffcodetab ht_takehiro[HTN];/* global memory block        */
  43.                 /* array of all huffcodtable headers    */
  44.                 /* 0..31 Huffman code table 0..31    */
  45.                 /* 32,33 count1-tables            */
  46.  
  47.  
  48. extern unsigned char t32l[], t33l[];
  49.  
  50. #endif
  51.